  @charset "UTF-8";
/* === COLORS === */
/* === BUTTONS === */
.btn{
  display:inline-block;
  padding:6px 20px;
  line-height:1.33;
  border:1px solid;
  font-weight:600;
  border-radius:4px;
  box-shadow:none;
  font-size:16px;
}
.btn:hover,.btn:focus{
  text-decoration:none;
  -webkit-box-shadow:none;
  box-shadow:none;
}
.btn:focus,.btn .focus{
  outline:1px !important;
}
.btn.btn-lg{
  padding:9px 28px;
  font-size:18px;
  font-weight:600;
}
.btn--blue,
.btn--blue:visited {
  background: #027EC6;
  border: solid 2px #027EC6;
  color: white;
}
.btn--blue:hover,
.btn--blue:visited:hover {
  background: #015789;
  border: solid 2px #015789;
  color: white;
}

.btn--light-blue,
.btn--light-blue:visited {
  background: #027EC6;
  border: solid 2px #027EC6;
  color: white;
}
.btn--light-blue:hover,
.btn--light-blue:visited:hover {
  background: #015789;
  border: solid 2px #015789;
  color: white;
}

.btn--lightest-blue,
.btn--lightest-blue:visited {
  background: #21C8D4;
  border: solid 2px #21C8D4;
  color: white;
}
.btn--lightest-blue:hover,
.btn--lightest-blue:visited:hover {
  background: #19969f;
  border: solid 2px #19969f;
  color: white;
}

.btn--dark-blue,
.btn--dark-blue:visited {
  background: #141C4D;
  border: solid 2px #141C4D;
  color: white;
}
.btn--dark-blue:hover,
.btn--dark-blue:visited:hover {
  background: #070a1c;
  border: solid 2px #070a1c;
  color: white;
}

.btn--orange,
.btn--orange:visited {
  background: #EC902D;
  border: solid 2px #EC902D;
  color: white;
}
.btn--orange:hover,
.btn--orange:visited:hover {
  background: #ca7112;
  border: solid 2px #ca7112;
  color: white;
}
.btn.btn--aqua-outline{
  background:#fff;
  border: solid 2px #007DC5;
  color:#007DC5 !important;
  margin-top: auto;
  margin-bottom: 2rem;
}
.btn.btn--aqua-outline:hover{
  background-color:#1ECAD3 !important;
  color:white !important;}

/* === ANIMATIONS === */
.animate--grow {
  transition: transform 0.2s ease-in-out;
}
.animate--grow:hover {
  transform: scale(1.1);
}

.animate--fade-up-in {
  position: relative;
  transition: top 0.4s ease-in-out, opacity 0.2s ease-in-out;
  top: 100px;
  opacity: 0;
}
.animate--fade-up-in.animated {
  top: 0;
  opacity: 1;
}

.animate--fade-in {
  position: relative;
  transition: top 0.4s ease-in-out, opacity 0.2s ease-in-out;
  top: 0px;
  opacity: 0;
}
.animate--fade-in.animated {
  top: 0;
  opacity: 1;
}

/* === HELPERS === */
/* Background */
.bg--blue {
  background: #027EC6;
}

.bg--light-blue {
  background: #20C9D4;
}

.bg--orange {
  background: #EC902D;
}

/* GAP */
.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

/* === Banner Component === */
.lp--banner {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.lp--banner .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .lp--banner {
    min-height: 550px;
  }
}
@media (min-width: 1200px) {
  .lp--banner {
    min-height: 650px;
  }
}
.lp--banner h1 {
  font-size: 2.5rem;
  font-weight: lighter;
  line-height: 1.2;
  color: #21C8D4;
}
@media (min-width: 768px) {
  .lp--banner h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .lp--banner h1 {
    font-size: 6rem;
  }
}
.lp--banner picture {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lp--banner picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* === Call-to-Action Component === */
.lp--call-to-action {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}
.lp--call-to-action .content {
  padding: 2rem 0;
}
.lp--call-to-action h2 {
  font-size: 2.5rem;
  font-weight: lighter;
  margin: 0 0 1rem 0;
  color: #5d87a1;
}
.lp--call-to-action picture {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lp--call-to-action picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* === Column-Content Component === */
.lp--column-content {
  padding: 0 0 4rem 0;
}
.lp--column-content .column-content {
  min-width: 100%;
  margin: 1rem 0;
  padding: 1.5rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
  box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.25);
}
.lp--column-content .column-content .content-icon {
  position: absolute;
  width: calc(100% - 3rem);
  height: 125px;
  top: -62.5px;
  text-align: center;
  z-index: 1;
}
.lp--column-content .column-content .content-icon img {
  min-height: 125px;
  min-width: 125px;
  max-height: 125px;
  max-width: 125px;
}
.lp--column-content .column-content .content-details,
.lp--column-content .column-content .content-details p {
  color: white;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
}
.lp--column-content .column-content .content-details a,
.lp--column-content .column-content .content-details a:visited,
.lp--column-content .column-content .content-details a:hover,
.lp--column-content .column-content .content-details p a,
.lp--column-content .column-content .content-details p a:visited,
.lp--column-content .column-content .content-details p a:hover {
  text-decoration: none;
}
.lp--column-content .column-content .content-details ul {
  list-style: none;
  margin-left: 0;
}
.lp--column-content .column-content .content-details ul li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.lp--column-content .column-content .content-details ul li:before {
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 75%;
  content: "\f054";
  position: absolute;
  left: 0rem;
  top: 0.35rem;
}
.lp--column-content .column-content .content-details ul li:last-child {
  margin-bottom: 0;
}
.lp--column-content .column-content .content-details > *:last-child {
  margin-bottom: 0;
}

/* === Heading Component === */
.lp--heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}
.lp--heading .line {
  height: 5px;
  background: #20C9D4;
  flex-grow: 1;
}
.lp--heading .heading {
  max-width: 75%;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  color: #027EC6;
  text-align: center;
}
@media (min-width: 768px) {
  .lp--heading .heading {
    font-size: 3rem;
  }
}

/* === Pull-Quote Component === */
@media (max-width: 768px) {
  .lp--pull-quote .container {
    max-width: 100%;
    padding: 0px;
  }
}
.lp--pull-quote .quote-element {
  z-index: 5;
}
@media (min-width: 768px) {
  .lp--pull-quote .quote-element {
    position: absolute;
    top: -125px;
    right: 1rem;
  }
}
.lp--pull-quote .quote-element a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
  background: #5D86A0;
  border: solid 8px #5D86A0;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 768px) {
  .lp--pull-quote .quote-element a {
    padding: 2.5rem;
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    border-radius: 200px;
    border: solid 8px #21C8D4;
    box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
  }
}
.lp--pull-quote .quote-element a .heading {
  font-size: 2rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 0.5rem;
}
.lp--pull-quote .quote-element a .description {
  font-size: 1rem;
  line-height: 1.2;
  color: white;
}
.lp--pull-quote.is-fixed {
  z-index: 20;
}
.lp--pull-quote.is-fixed .quote-element {
  position: fixed;
  top: 1rem;
  right: 3.7rem;
}
@media (max-width: 767px) {
  .lp--pull-quote.is-fixed .quote-element {
    top: 0;
    right: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .personabar-visible .lp--pull-quote.is-fixed .quote-element {
    width: calc(100% - 80px);
  }
}
/* === Testimonial Component === */
.lp--testimonial,
.lp--content-banner {
  padding: 3rem 0;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .lp--testimonial .testimonial-content.no-image,
  .lp--testimonial .content-banner__content.no-image,
  .lp--content-banner .testimonial-content.no-image,
  .lp--content-banner .content-banner__content.no-image {
    max-width: 75%;
  }
}
.lp--testimonial .testimonial-content p,
.lp--testimonial .content-banner__content p,
.lp--content-banner .testimonial-content p,
.lp--content-banner .content-banner__content p {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}
@media (min-width: 768px) {
  .lp--testimonial .testimonial-content p,
  .lp--testimonial .content-banner__content p,
  .lp--content-banner .testimonial-content p,
  .lp--content-banner .content-banner__content p {
    font-size: 1.75rem;
  }
}
.lp--testimonial .testimonial-content .quote-icon,
.lp--testimonial .content-banner__content .quote-icon,
.lp--content-banner .testimonial-content .quote-icon,
.lp--content-banner .content-banner__content .quote-icon {
  font-size: 4rem;
  margin-top: -1rem;
  color: white;
}
.lp--testimonial .testimonial-content .quote-icon .fa-quote-left:before,
.lp--testimonial .content-banner__content .quote-icon .fa-quote-left:before,
.lp--content-banner .testimonial-content .quote-icon .fa-quote-left:before,
.lp--content-banner .content-banner__content .quote-icon .fa-quote-left:before {
  content: "“";
  font-family: georgia, serif;
}
@media (min-width: 768px) {
  .lp--testimonial .testimonial-content .quote-icon,
  .lp--testimonial .content-banner__content .quote-icon,
  .lp--content-banner .testimonial-content .quote-icon,
  .lp--content-banner .content-banner__content .quote-icon {
    font-size: 6rem;
    margin-top: -2rem;
  }
}
.lp--testimonial .testimonial-content .fa-quote-right,
.lp--testimonial .content-banner__content .fa-quote-right,
.lp--content-banner .testimonial-content .fa-quote-right,
.lp--content-banner .content-banner__content .fa-quote-right {
  position: absolute;
  margin-left: 1rem;
  font-size: 2rem;
}
.lp--testimonial .testimonial-content .fa-quote-right:before,
.lp--testimonial .content-banner__content .fa-quote-right:before,
.lp--content-banner .testimonial-content .fa-quote-right:before,
.lp--content-banner .content-banner__content .fa-quote-right:before {
  content: "”";
  font-family: georgia, serif;
}
.lp--testimonial .testimonial-content .by-line,
.lp--testimonial .content-banner__content .by-line,
.lp--content-banner .testimonial-content .by-line,
.lp--content-banner .content-banner__content .by-line {
  font-size: 1rem;
  font-style: italic;
  color: white;
}
.lp--testimonial .testimonial-image,
.lp--testimonial .content-banner__image,
.lp--content-banner .testimonial-image,
.lp--content-banner .content-banner__image {
  border: solid 4px #000;
  border-radius: 200px;
  overflow: hidden;
  box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 10px 10px 9px 0px rgba(0, 0, 0, 0.5);
  min-width: 125px;
  max-width: 125px;
  min-height: 125px;
  max-width: 125px;
}
@media (min-width: 992px) {
  .lp--testimonial .testimonial-image,
  .lp--testimonial .content-banner__image,
  .lp--content-banner .testimonial-image,
  .lp--content-banner .content-banner__image {
    border: solid 8px #000;
    min-width: 300px;
    max-width: 300px;
    min-height: 300px;
    max-width: 300px;
  }
}
.lp--testimonial .testimonial-image.border--blue,
.lp--testimonial .content-banner__image.border--blue,
.lp--content-banner .testimonial-image.border--blue,
.lp--content-banner .content-banner__image.border--blue {
  border-color: #141C4D;
}
.lp--testimonial .testimonial-image.border--light-blue,
.lp--testimonial .content-banner__image.border--light-blue,
.lp--content-banner .testimonial-image.border--light-blue,
.lp--content-banner .content-banner__image.border--light-blue {
  border-color: #21C8D4;
}
.lp--testimonial .testimonial-image.border--orange,
.lp--testimonial .content-banner__image.border--orange,
.lp--content-banner .testimonial-image.border--orange,
.lp--content-banner .content-banner__image.border--orange {
  border-color: #ED8F2B;
}
.lp--testimonial .testimonial-image img,
.lp--testimonial .content-banner__image img,
.lp--content-banner .testimonial-image img,
.lp--content-banner .content-banner__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* === Content Banner === */
.lp--content-banner .content-banner__content p {
  font-size: 1.5rem;
}
.lp--content-banner .content-banner__content a {
  text-decoration: underline;
}
.lp--content-banner .content-banner__content h1,
.lp--content-banner .content-banner__content h2,
.lp--content-banner .content-banner__content h3,
.lp--content-banner .content-banner__content h4,
.lp--content-banner .content-banner__content p,
.lp--content-banner .content-banner__content a {
  color: white !important;
}
.lp--content-banner .content-banner__main {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .lp--content-banner .content-banner__main {
    flex-direction: column;
    align-items: center;
  }
  .lp--content-banner .content-banner__main .cta-section {
    text-align: center;
  }
}
.lp--content-banner .content-banner__cta-row {
  flex-wrap: wrap;
}
.lp--content-banner .content-banner__cta-row .btn {
  margin-right: 1rem;
}
.lp--content-banner .content-banner__cta-row.justify-content-center .btn {
  margin: 0 0.5rem;
}
.lp--content-banner .content-banner__cta-row.justify-content-end .btn {
  margin: 0 0 0 1rem;
}
.lp--content-banner .btn {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .lp--content-banner .btn {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .lp--content-banner .img-alignment-left {
    flex-direction: row-reverse;
  }
}

/* === LP Spacing and Misc === */
.lp--section {
  padding: 20px 0;
  background: url("/portals/_default/skins/AMT-Redesign/images/bg-diamond-pattern.jpg") center top;
}
.lp--section p,
.lp--section ul,
.lp--section ol,
.lp--section li {
  font-size: 1.5rem;
  font-weight: 400;
}
.lp--section p a,
.lp--section ul a,
.lp--section ol a,
.lp--section li a {
  color: #5d87a1;
  font-weight: 600;
  text-decoration: underline;
}
.lp--section .btn {
  font-size: 1.5rem;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .lp--section .btn {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .lp--section iframe {
    height: 35vw;
  }
}

.lp--anchor-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp--anchor-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
  margin: 0 5px;
}

.lp--list-elements {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp--list-elements ul,
.lp--list-elements ol {
  margin-bottom: 0;
}

.lp--nav-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .lp--nav-row {
    flex-direction: column;
  }
  .lp--nav-row a {
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=2sxc-components.css.map */
